home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / fkey.h < prev    next >
C/C++ Source or Header  |  1999-03-17  |  4KB  |  109 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- //
  5. // C++ Header File Name: fkey.h 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer   
  8. // File Creation Date: 02/07/1997  
  9. // Date Last Modified: 03/17/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ---------- Include File Description and Details  ---------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. The FKey class is used to identify objects in the database
  32. by a unique key name when an index file is used. Each key is
  33. fixed in length by the KeyLength variable.
  34. */
  35. // ----------------------------------------------------------- //   
  36. #ifndef __FKEY_HPP__
  37. #define __FKEY_HPP__
  38.  
  39. #include <string.h>
  40. #include <iostream.h>
  41. #include <iomanip.h>
  42. #include "vbdfile.h"
  43.  
  44. // Each Key will be limited to 64 bytes (512 bits)
  45. const unsigned FKeyLength = 64; // String length of the fixed key name
  46.  
  47. // (F)ixed length (K)ey class
  48. class FKey 
  49. public:
  50.   FKey() { Clear(); object_address = 0; class_id = 0; }
  51.   FKey(char *s);
  52.   FKey(char *s, int oa, int ci); 
  53.   FKey(const FKey &s);
  54.   FKey &operator=(const FKey &s);
  55.  
  56. public:
  57.   void Store(char *s);
  58.   void Store(const char *s);
  59.   int Append(char c);
  60.   void Clear();
  61.   void SetClassID(INT32 id) { class_id = id; }
  62.   void SetObjectAddress(INT32 addr) { object_address = addr; }
  63.   INT32 ClassID() { return class_id; }
  64.   INT32 ObjectAddress() { return object_address; }
  65.   void Copy(const FKey &s);
  66.  
  67.   // Functions used to return null terminate low level c strings
  68.   char *c_str();
  69.   char *c_str() const;
  70.   
  71. public:
  72.   friend int operator==(const FKey &a, const FKey &b) {
  73.     return strcmp(a.key_name, b.key_name) == 0;
  74.   }
  75.  
  76.   friend int operator<(const FKey &a, const FKey &b) {
  77.     return strcmp(a.key_name, b.key_name) < 0;
  78.   }
  79.  
  80.   friend int operator>(const FKey &a, const FKey &b) {
  81.     return strcmp(a.key_name, b.key_name) > 0;
  82.   }
  83.  
  84.   friend int operator!=(const FKey &a, const FKey &b) {
  85.     return strcmp(a.key_name, b.key_name) != 0;
  86.   }
  87.   
  88.   friend ostream &operator<<(ostream &os, const FKey &s) {
  89.     return os.write(s.key_name, strlen(s.key_name));
  90.   }
  91.  
  92.   friend istream &operator>>(istream &os, FKey &s) {
  93.     os >> setw(strlen(s.key_name)) >> s.key_name;
  94.     return os;
  95.   }
  96.            
  97. private:
  98.   char key_name[FKeyLength];  // Unique data key 
  99.   INT32 class_id;             // Class ID number of the object
  100.   INT32 object_address;       // Object's address in the database file
  101. };
  102.  
  103. #endif  // __FKEY_HPP__ //
  104. // ----------------------------------------------------------- // 
  105. // ------------------------------- //
  106. // --------- End of File --------- //
  107. // ------------------------------- //
  108.